home *** CD-ROM | disk | FTP | other *** search
/ Revista CD Expert 37 / CD Expert nº 37.iso / LastCall / lastcall.exe / stuff / lastcall.dxr / 00234_Welcome message on last call screen.ls < prev    next >
Encoding:
Text File  |  2000-03-27  |  522 b   |  25 lines

  1. property pSpr
  2.  
  3. on beginSprite me
  4.   global gGameLevel
  5.   pSpr = sprite(me.spriteNum)
  6.   if inBonusRoundMode() then
  7.     temp = "Bonus Round Preview"
  8.   else
  9.     if inShotMode() then
  10.       temp = "Free Shot Preview"
  11.     else
  12.       if inRecipeMode() then
  13.         temp = "Recipe Practice Preview"
  14.       else
  15.         if gGameLevel = 0 then
  16.           temp = "Welcome to Last Call!"
  17.         else
  18.           temp = "Shift" && gGameLevel + 1 && "Objectives"
  19.         end if
  20.       end if
  21.     end if
  22.   end if
  23.   pSpr.member.text = temp
  24. end
  25.